home *** CD-ROM | disk | FTP | other *** search
/ MacAddict 104 / MacAddict_104_2005-04.iso / Software / Internet & Communication / WordPress 1.2.2 freeware.dmg / wordpress / wp-rdf.php < prev    next >
PHP Script  |  2004-05-19  |  2KB  |  57 lines

  1. <?php /* RDF 1.0 generator, original version by garym@teledyn.com */
  2. if (! $feed) {
  3.     $blog = 1; // enter your blog's ID
  4.     $doing_rss = 1;
  5.     require('wp-blog-header.php');
  6. }
  7. $more = 1;
  8.  
  9. header('Content-type: application/rdf+xml', true);
  10.  
  11. add_filter('the_content', 'trim');
  12. ?>
  13. <?php echo '<?xml version="1.0" encoding="'.get_settings('blog_charset').'"?'.'>'; ?>
  14. <!-- generator="wordpress/<?php echo $wp_version ?>" -->
  15. <rdf:RDF
  16.     xmlns="http://purl.org/rss/1.0/"
  17.     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  18.     xmlns:dc="http://purl.org/dc/elements/1.1/"
  19.     xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
  20.     xmlns:admin="http://webns.net/mvcb/"
  21.     xmlns:content="http://purl.org/rss/1.0/modules/content/"
  22. >
  23. <channel rdf:about="<?php bloginfo_rss("url") ?>">
  24.     <title><?php bloginfo_rss('name') ?></title>
  25.     <link><?php bloginfo_rss('url') ?></link>
  26.     <description><?php bloginfo_rss('description') ?></description>
  27.     <dc:language><?php echo get_settings('rss_language'); ?></dc:language>
  28.     <dc:date><?php echo mysql2date('Y-m-d\TH:i:s\Z', get_lastpostmodified('GMT')); ?></dc:date>
  29.     <admin:generatorAgent rdf:resource="http://wordpress.org/?v=<?php echo $wp_version ?>"/>
  30.     <sy:updatePeriod>hourly</sy:updatePeriod>
  31.     <sy:updateFrequency>1</sy:updateFrequency>
  32.     <sy:updateBase>2000-01-01T12:00+00:00</sy:updateBase>
  33.     <items>
  34.         <rdf:Seq>
  35.         <?php $items_count = 0; if ($posts) { foreach ($posts as $post) { start_wp(); ?>
  36.             <rdf:li rdf:resource="<?php permalink_single_rss() ?>"/>
  37.         <?php $wp_items[] = $row; $items_count++; if (($items_count == get_settings('posts_per_rss')) && empty($m)) { break; } } } ?>
  38.         </rdf:Seq>
  39.     </items>
  40. </channel>
  41. <?php if ($posts) { foreach ($posts as $post) { start_wp(); ?>
  42. <item rdf:about="<?php permalink_single_rss() ?>">
  43.     <title><?php the_title_rss() ?></title>
  44.     <link><?php permalink_single_rss() ?></link>
  45.     <dc:date><?php echo mysql2date('Y-m-d\TH:i:s\Z', $post->post_date_gmt); ?></dc:date>
  46.     <dc:creator><?php the_author() ?> (mailto:<?php the_author_email() ?>)</dc:creator>
  47.     <?php the_category_rss('rdf') ?>
  48. <?php if (get_settings('rss_use_excerpt')) : ?>
  49.     <description><?php the_excerpt_rss(get_settings('rss_excerpt_length'), 2) ?></description>
  50. <?php else : ?>
  51.     <description><?php the_content_rss('', 0, '', get_settings('rss_excerpt_length'), 2) ?></description>
  52.     <content:encoded><![CDATA[<?php the_content('', 0, '') ?>]]></content:encoded>
  53. <?php endif; ?>
  54.     
  55. </item>
  56. <?php } }  ?>
  57. </rdf:RDF>